home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE08 / DATADICT / RUNSTATS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-10-10  |  490 b   |  31 lines

  1. unit Runstats;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls;
  8.  
  9. type
  10.   Trunstats = class(TCustomMemo)
  11.   private
  12.     { Private declarations }
  13.   protected
  14.     { Protected declarations }
  15.   public
  16.     { Public declarations }
  17.   published
  18.     { Published declarations }
  19.   end;
  20.  
  21. procedure Register;
  22.  
  23. implementation
  24.  
  25. procedure Register;
  26. begin
  27.   RegisterComponents('Samples', [Trunstats]);
  28. end;
  29.  
  30. end.
  31.